@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --swiper-theme-color: #000 !important;
    --primary-color: #959595;
	--secondary-color: #464343;
    --color-black: black;
    --color-lightgrey: rgb(226, 223, 223);

}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

body {
    font-family: "Montserrat", sans-serif;
}

a {
    text-decoration: none;
    color: var(--color-black);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.desktop-hide {
    display: none;
}

.mobile-hide {
    display: block;
}

.header-style {
    background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
    position: relative;
    overflow: hidden;
}

.header-container {
    position: fixed;
    z-index: 100;
    margin: 0 auto;
    width: 100%;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInDown {
    animation-name: fadeInDown;
}

.header-container.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0 auto;
    max-width: inherit;
    background-color: white;
    transition: all 0.2s ease-in-out;
    animation: fadeInDown 0.5s both 0.1s;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.header-container.sticky .afterLogo nav ul li {
    padding: 18px 0;
}

.header-container .header-sub-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-container .logo img {
    height: 30px;
}

.header-container .afterLogo {
    display: flex;
    gap: 20px;
    position: relative;
}

.header-container .afterLogo nav ul {
    display: flex;
    position: relative;
    /* padding: 10px 0; */
    align-items: center;
}

.header-container .afterLogo nav ul li {
    padding: 20px 0px;
    font-weight: 500;
    transition: all 0.2s ease;
    text-transform: uppercase;
    font-size: 14px;
    position: relative;
    margin: 0 15px;

}

.header-container .afterLogo nav ul li a {
    position: relative;
	color: var(--secondary-color);
	transition: all 0.5s ease;
	
	svg {
		fill: var(--secondary-color);
	}
}

.header-container .afterLogo nav ul li a:hover {
	color: black;
}

.header-container .afterLogo nav ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: var(--color-black);
    transition: all 0.5s;
}

.header-container .afterLogo nav ul li a:hover:before {
    width: 0%;
}

.header-container .afterLogo nav ul li ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 102%;
    left: 0;
    align-items: start;
    /* padding: 10px; */
    background-color: var(--secondary-color);
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    border-radius: 5px;
    overflow: hidden;
}

.header-container .afterLogo nav ul li ul li {
    padding: 10px 25px 10px 0px;
    border-bottom: 1px solid var(--secondary-color);
}

.header-container .afterLogo nav ul li ul li::before {
    display: none;
}

.header-container .afterLogo nav ul li ul li:hover {
    background-color: var(--secondary-color);
}

.header-container .afterLogo nav ul li ul li:hover::before {
    content: '';
    height: 0;
}

.header-container .afterLogo nav ul li ul li a {
    color: white;
}

/* .header-container .afterLogo nav ul li ul li:first-child {
    padding-top: 0;
} */

.header-container .afterLogo nav ul li ul li:last-child {
    /* padding-bottom: 0; */
    border-bottom: none;
}

.header-container .afterLogo nav ul li:hover ul {
    visibility: visible;
    opacity: 1;
}

.header-container .afterLogo .afterNav {
    display: flex;
    align-items: center;
    gap: 20px;
	
	svg {
		fill: var(--secondary-color);
	}
}

.header-container .afterLogo .afterNav .product-btn {
    background-color: var(--secondary-color);
    font-weight: 600;
    padding: 5px 20px;
    border-radius: 5px;
    color: white;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
    font-size: 12px;
    border: 1px solid var(--secondary-color);
}

.header-container .afterLogo .afterNav .product-btn:hover {
    background-color: transparent;
    font-weight: 600;
    color: var(--secondary-color);
}

.header-container .afterLogoIcon {
    display: none;
}

.header-container .menuIcon i {
    font-weight: 600;
    font-size: 20px;
}


.header-style .first-section {
    align-items: center;
}

.header-style .first-section .leftSide {
    padding: 200px 0 100px 0;
}

.header-style .first-section .leftSide .readmoreBtn {
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    padding: 6px 25px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    color: white;
    transition: all 0.3s;
}

.header-style .first-section .leftSide .readmoreBtn:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.header-style .first-section .rightSide {
    position: relative;
	text-align: center;
    right: 0;
}

.authorized-container {
    display: flex;
    padding: 20px 0;
    justify-content: space-between;
}

.homepage-offer {
    column-gap: 20px !important;
}

.homepage-offer .offer-item {
    position: relative;
    /* box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px; */
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 15px;
	
	p {
		color: orange;
	}
}

.homepage-offer .offer-item .image-box {
    width: 100%;
    height: 330px;
    overflow: hidden;
    /* border-radius: 5px; */
    position: relative;
}

#servicesPage-content .homepage-offer .offer-item .image-box {
    width: 100%;
    height: 530px;
    overflow: hidden;
    position: relative;
	
	img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}

.homepage-offer .offer-item .image-box::before {
    content: '01';
    position: absolute;
    width: 100%;
    left: -5%;
    top: -32px;
    font-size: 100px;
    font-weight: 900;
    color: var(--primary-color);
    opacity: 0.2;
}

.homepage-offer .offer-item:nth-child(2) .image-box::before {
    content: '02';
}

.homepage-offer .offer-item:nth-child(3) .image-box::before {
    content: '03';
}

.homepage-offer .offer-item:nth-child(4) .image-box::before {
    content: '04';
}

.homepage-offer .homepage-main-slider .swiper .swiper-wrapper .swiper-slide .slider-item .offer-item .image-box::before {
    content: '01';
    position: absolute;
    width: 100%;
    left: -30%;
    top: -32px;
    font-size: 130px;
    font-weight: 900;
    color: var(--primary-color);
    opacity: 0.2;
}

.homepage-offer .homepage-main-slider .swiper .swiper-wrapper .swiper-slide:nth-child(2) .slider-item .offer-item .image-box::before {
    content: '02';
}

.homepage-offer .homepage-main-slider .swiper .swiper-wrapper .swiper-slide:nth-child(3) .slider-item .offer-item .image-box::before {
    content: '03';
}

.homepage-offer .homepage-main-slider .swiper .swiper-wrapper .swiper-slide:nth-child(4) .slider-item .offer-item .image-box::before {
    content: '04';
}

.homepage-offer .offer-item .offer-content {
    /* position: absolute; */
    bottom: -50px;
    /* height: 100px; */
    display: flex;
    align-items: start;
    /* background-color: #f6f6f6; */
    width: 100%;
    /* padding: 10px; */
    padding-top: 10px;
    text-align: left;
}

.homepage-offer .offer-item p.offer-content {
        font-size: 0.85rem;
    font-weight: 500;
    color: black;
    display: flex
;
    flex-direction: column;
	padding-top: 20px;
	line-height: 1.5;

}

.homepage-offer .offer-item .offer-content {
		
	h4 {
		font-size: 2rem;
	}
}

.homepage-main-slider {
    .swiper {
        width: 100%;
        height: 100%;
        /* box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px; */
        padding-bottom: 30px;
    }

    .swiper-slide {
        text-align: center;
        font-size: 18px;
        background: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .swiper-pagination-bullet {
        width: 30px;
        border-radius: 2px;
        background-color: #00000058;
    }
}

.joinUsSection {
	background-image: linear-gradient(to top, #cfd9df 0%, #e2ebf0 100%);
    padding: 8%;
    border-radius: 40px;
    position: relative;
}

.joinUsSection .leftSide h2 {
    font-size: 26px;
    padding-bottom: 45px;
}

.joinUsSection .leftSide a {
    background-color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s;
}

.joinUsSection .leftSide a:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.joinUsSection .rightSide {
    position: absolute;
    bottom: 20px;
    right: 10%;

}

footer {
    padding-top: 50px;
    padding-bottom: 30px;
}

footer .footer-img img {
    height: 35px;
}

footer .footer-item h3 {
    font-size: 12px;
    text-transform: uppercase;
    padding-bottom: 20px;
}

footer .footer-item ul {
    display: flex;
    flex-direction: column;
}

footer .footer-item ul li {
    margin-bottom: 7px;
    font-size: 13px;
}

footer .footer-item p {

    font-size: 13px;
}

footer .footer-item .footer-icon {
    padding-top: 10px;
    display: flex;
    gap: 5px;
}

footer .footer-item .footer-icon a {
    /* padding: 5px; */
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .copyrightfooter {
    font-size: 14px;
}

footer .footer-item .footer-icon {
    padding-top: 10px;
    display: flex;
    gap: 3px;
}

footer .footer-item .footer-icon .icons {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary-color);
    padding: 5px;
    height: 22px;
    width: 22px;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

footer .footer-item .footer-icon .icons:hover {
    transform: scale(1.1);
}


/* ABOUT PAGE */
.about-first-section {
    padding-top: 120px;
    padding-bottom: 100px;
}

.about-first-section .rightSide {
    z-index: 30;
}

.about-first-section .rightSide h2 {
    padding-bottom: 20px;
}

.about-first-section .rightSide .readmoreBtn {
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 6px 25px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    color: white;
    transition: all 0.3s;
    margin-bottom: 30px;
}

.about-first-section .rightSide .readmoreBtn:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.about-first-section .leftSideDesktop {
    position: absolute;
    z-index: 29;
    top: 0;
    left: 0;
    width: 100%;
	height: 100%;
}

.about-first-section .leftSideDesktop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-first-section .leftSideMobile {
    position: absolute;
    z-index: 29;
    top: 0;
    left: 0;
    display: none;
}

.visionMissionSection .visionContainer {
    padding: 100px 100px 100px 0px;
}

.visionMissionSection .visionContainer h3 {
    font-size: 25px;
    padding-bottom: 20px;
}

.visionMissionSection .missionContainer {
    position: relative;
}

.visionMissionSection .missionContainer .missionBackground {
    position: absolute;
    background-color: #fbfbfb;
    left: 0;
    width: 120%;
    height: 100%;
    z-index: 28;
}

.visionMissionSection .missionContainer .content {
    position: relative;
    z-index: 29;
    padding: 100px;
}

.visionMissionSection .missionContainer .content .item {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 30px;
}

.visionMissionSection .missionContainer .content .item .number {
    font-size: 40px;
    font-weight: 600;
    width: 30px;
}

.visionMissionSection .missionContainer .content .item .number span {
    position: relative;
}

.visionMissionSection .missionContainer .content .item .number span::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    bottom: 5px;
    border-radius: 50%;
    right: -15%;
}

.visionMissionSection .missionContainer .content .item p {
    font-size: 16px;
}

.visionMissionSection .missionContainer h3 {
    font-size: 25px;
    padding-bottom: 20px;
}

.shareHolderSection {
    padding-top: 50px;
    padding-bottom: 150px;
    align-items: center;
}

.shareHolderSection .shareHolderContainer {
    position: relative;
}

.shareHolderSection .shareHolderContainer .shareHolderImage {
    height: 100%;
    max-height: 300px;
    width: 100%;
    overflow: hidden;
    object-fit: fill;
}

.shareHolderSection .shareHolderContainer .shareHolderContent {
    position: absolute;
    bottom: -30%;
    width: 80%;
    right: 2%;
    background-color: rgba(255, 255, 255, 0.7);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 20px;
}

.aboutUsMainHeader {
    background: var(--aboutusDesktopBackground);
}

.categoryContainer {
    height: 230px;
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: center; */
    position: relative;
}

.categoryContainer .imageContainer {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.categoryContainer .imageContainer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;

}

.categoryContainer .imageContainer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    transition: all 0.3s ease-in-out;
}


.categoryContainer:hover .imageContainer::before {
    background-color: rgba(0, 0, 0, 0.4);
}




.categoryContainer .text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
    text-align: center;
    color: white;
    transition: all 0.3s ease-in-out;

}

.categoryContainer:hover .text {
    color: rgb(255, 255, 255);
}

.categoryContainer.active {
    .imageContainer::before {
        background-color: rgba(0, 0, 0, 0.4);
    }

    .text {
        color: rgb(255, 255, 255);
    }
}

.productItemContainer {
    background-color: white;
    border-radius: 10px;
    /* padding: 10px; */
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 4px;
    border: 1px solid rgb(240, 240, 240);
    margin-bottom: 40px;
    overflow: hidden;
}

.productItemContainer .productImage {
    width: 100%;
    /* border-radius: 10px; */
    overflow: hidden;
}

.productItemContainer .productImage img {
    width: 100%;
    aspect-ratio: 5 / 3;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease-in-out;
}

.productItemContainer .productImage img:hover {
    transform: scale(1.1);
}

.productItemContainer .priceContainer {
    background-color: var(--primary-color);
    display: flex;
    padding: 5px 20px;
    position: relative;
    overflow: hidden;
}

.productItemContainer .priceContainer .price {
    font-weight: 600;
    font-size: 17px;
    color: whitesmoke;
}

.productItemContainer .priceContainer .viewProductBtn {
    background-color: #e55212;
    position: absolute;
    top: -1px;
    right: -1px;
    height: 100%;
    width: 60%;
    font-size: 15px;
    font-weight: 600;
    padding: 5px 20px;
    text-align: right;
    --p: 20px;
    /* control the shape (can be percentage) */
    aspect-ratio: 1;
    clip-path: polygon(0 0, 100% 0, 100% 100%, var(--p) 100%);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;

}

.productItemContainer .priceContainer .viewProductBtn a {
    transition: all 0.3s ease;
    color: #eeeeee;
}

.productItemContainer .priceContainer .viewProductBtn:hover a {
    color: whitesmoke;
}

.productItemContainer .productContent .categoryIcon {
    padding: 20px 20px;
}

.productItemContainer .productContent .categoryIcon span {
    font-size: 10px;
    background-color: rgb(226, 241, 246);
    padding: 5px 15px;
    border-radius: 10px;
}

.productItemContainer .productContent h3 {
    font-size: 15px;
    padding: 15px 20px 15px 20px;
    text-align: left;
}

.productItemContainer .productContent .specialfeature {
    display: flex;
    padding: 15px 20px;
    align-items: center;
    justify-content: space-between;
}

.productItemContainer .productContent .specialfeature .year,
.productItemContainer .productContent .specialfeature .lenght,
.productItemContainer .productContent .specialfeature .seat {
    display: flex;
    align-items: center;
    gap: 5px;
}

#darkHeader .about-first-section .leftSideDesktop {
    position: absolute;
    z-index: 29;
    top: -56%;
    left: 0;
    width: 100%
}

#darkHeader .header-container .afterLogo nav ul li a {
    color: white;
    padding-bottom: 3px;
    align-items: center;
}

#darkHeader .header-container .afterLogo .afterNav .product-btn {
    border: 2px solid white;
    color: white;
    background-color: transparent;
}

#darkHeader .header-container .afterLogo .afterNav .product-btn:hover {
    background-color: white;
    color: black;
    border-color: white;
}

.productItemContainer .productContent .specialfeature .year .icon,
.productItemContainer .productContent .specialfeature .lenght .icon,
.productItemContainer .productContent .specialfeature .seat .icon {
    display: flex;
    align-items: center;
}

#darkHeader .header-container.sticky .afterLogo nav ul li a {
    color: black;
}

#darkHeader .header-container.sticky .afterLogo nav ul li ul li a {
    color: white;
}

#darkHeader .header-container.sticky .afterLogo .afterNav .product-btn {
    border: 2px solid black;
    color: black;
}

#darkHeader .header-container.sticky .afterLogo .afterNav .product-btn:hover {
    background-color: black;
    color: white;
}

#darkHeader .header-container.sticky .afterLogo .afterNav a svg {
    fill: black;
}

#darkHeader-content .homepage-offer .offer-item .image-box {
    height: 480px;
}

#darkHeader .header-container .afterLogo .afterNav a svg {
    fill: white;
}

#sustainabilitySection {
    background-color: white;
    padding-top: 50px;
    padding-bottom: 50px;
}

#sustainabilitySection .first-section {
    margin-top: 50px;
    background-color: #f5f4f4;
    padding: 80px 200px 80px 80px;
    border-radius: 0px 50px 50px 0px;
}

#sustainabilitySection .first-section h2 {
    color: #8ea460;
    font-size: 40px;
    text-transform: uppercase;
    padding-bottom: 20px;
}

#sustainabilitySection .first-section p {
    font-size: 16px;
}

#sustainabilitySection .treeIcon {
    height: 100px;
}

#sustainabilitySection .second-section {
    gap: 30px;
    display: flex;
    background-color: #f5f4f4;
    padding: 80px 80px 80px 80px;
    border-radius: 50px 0px 0px 50px;
}

#sustainabilitySection .second-section h2 {
    padding-bottom: 20px;
}


.partnershipSection {
    display: flex;
    height: 100vh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.partnershipSection h1 {
    padding-bottom: 30px;
}

.partnershipSection p {
    width: 50%;
    line-height: 1.5;
}

#newsPage .about-first-section {
    padding-top: 300px;
    padding-bottom: 300px;
}

.newsContainer {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border-radius: 3px;
    margin-bottom: 10px;
}

.newsContainer .newsImage {
    width: 100%;
    height: 190px;
    padding-bottom: 10px;
    overflow: hidden;
}

.newsContainer .newsImage img {
    width: 100%;
}

.newsContainer .newsContent {
    padding: 10px;
}

.newsContainer .newsContent .title {
    font-size: 15px;
    padding-bottom: 5px;
}

.newsContainer .newsContent .date {
    font-size: 13px;
    padding-bottom: 10px;
}

.newsContainer .newsContent .excerpts {
    font-size: 15px;
}

.contact-page-contact-form {
    padding-bottom: 30px;
    width: 80%;
}

.contact-page-contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-page-contact-form form input {
    border-radius: 30px;
    padding: 5px 20px;
    border: 1px solid lightblue;
    font-family: "Montserrat", serif;
}

.contact-page-contact-form form input::placeholder {
    font-family: "Montserrat", serif;
}

.contact-page-contact-form form textarea {
    border-radius: 10px;
    padding: 10px 20px;
    border: 1px solid lightblue;
    font-family: "Montserrat", serif;
    height: 200px;
}

.contact-page-contact-form form textarea::placeholder {
    font-family: "Montserrat", serif;
}

.contact-page-contact-form form button {
    border-radius: 30px;
    padding: 5px 20px;
    border: 1px solid var(--primary-color);
    background-color: var(--primary-color);
    color: white;
    font-size: 16px;
    font-family: "Montserrat", serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.contact-page-contact-form form button:hover {
    background-color: white;
    color: var(--primary-color);
}

.ulLoginPage {
    padding-bottom: 50px;
}

.ulLoginPage .liLoginPage {
    margin-bottom: 5px;
    display: flex;
    max-width: 70%;
    align-items: center;
    padding: 5px 25px;
    gap: 10px;
    border-radius: 30px;
    border: 2px solid var(--primary-color);
}

.filter-container {
    background-color: #fffafa;
    padding: 20px;
    border-radius: 10px;
}


.filter-container .filter-item {
    display: flex;
}

.filter-container form h3 {
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    padding-bottom: 10px;
    padding-top: 20px;
}

.filter-container form input[type="checkbox"] {
    accent-color: black;
}

/* .filter-container form input[type="checkbox"]:checked {
    accent-color: orange;
} */

.filter-container form label {
    padding: 5px 10px;
    display: inline-block;
}

.filter-container .submitButton {
    margin-top: 20px;
    background-color: var(--primary-color);
    padding: 5px 20px;
    width: 100%;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    font-size: 14px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.filter-container .submitButton:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.priceRangeContainer {
    .price-input {
        width: 100%;
        display: flex;
        padding-bottom: 20px;
    }

    .price-input .field {
        display: flex;
        width: 100%;
        height: 100%;
        align-items: center;
    }

    .field input {
        width: 100%;
        height: 100%;
        outline: none;
        font-size: 19px;
        margin-left: 12px;
        border-radius: 5px;
        text-align: center;
        border: 1px solid #000000;
        -moz-appearance: textfield;
    }

    input[type="number"]::-webkit-outer-spin-button,
    input[type="number"]::-webkit-inner-spin-button {
        -webkit-appearance: none;
    }

    .price-input .separator {
        width: 130px;
        display: flex;
        font-size: 14px;
        align-items: center;
        justify-content: center;
    }

    .price-input .field span {
        font-size: 13px;
        text-transform: uppercase;
    }

    .price-input .field input {
        font-size: 14px;
        border-radius: 5px;
        font-weight: 500;
        border: 1px solid lightblue;
    }

    .slider {
        height: 3px;

        position: relative;
        background: #9f9999;
        border-radius: 0;
        margin-top: 10px;
    }

    .slider .progress {
        height: 100%;
        /* left: 25%;
        right: 25%; */
        position: absolute;
        border-radius: 0;
        background: var(--primary-color);

    }

    .range-input {
        position: relative;
        margin-bottom: 20px;
    }

    .range-input input {
        position: absolute;
        width: 100%;
        height: 5px;
        top: -5px;
        background: none;
        pointer-events: none;
        -webkit-appearance: none;
        -moz-appearance: none;
    }

    input[type="range"]::-webkit-slider-thumb {
        height: 10px;
        width: 10px;
        /* border-radius: 50%; */
        background: var(--primary-color);
        pointer-events: auto;
        -webkit-appearance: none;
        box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
    }

    input[type="range"]::-moz-range-thumb {
        height: 17px;
        width: 17px;
        border: none;
        border-radius: 50%;
        background: #17a2b8;
        pointer-events: auto;
        -moz-appearance: none;
        box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
    }
}

.topProductListPage {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding-bottom: 45px;
    padding-top: 30px;
}


.topProductListPage .filterMobileContainer .filterMobileAside {
    position: absolute;
    background-color: white;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 15px;
    border-radius: 10px;
    transform: translateX(110%);
    transition: 500ms cubic-bezier(0.77, 0, 0.175, 1);
}

.filterMobileAside .filterContentList form .submitButton {
    margin-top: 20px;
    background-color: var(--primary-color);
    padding: 5px 20px;
    width: 100%;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    font-size: 14px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.filterMobileAside .filter-item {
    display: flex;
}

.filterMobileAside .filterContentList form .submitButton:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.filterMobileAside .filterContentList form h3 {
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    padding-bottom: 3px;
    padding-top: 10px;
}


.filterMobileAside .filterContentList form input[type="checkbox"] {
    accent-color: var(--primary-color);
}

.filterMobileAside .filterContentList form label {
    padding: 0px 10px;
    display: inline-block;
}

.filterMobileAside .closeIcon {
    text-align: right;
}

.afterPriceRange {
    .price-input {
        width: 100%;
        display: flex;
        padding-bottom: 20px;
    }

    .price-input .field {
        display: flex;
        width: 100%;
        height: 100%;
        align-items: center;
    }

    .field input {
        width: 100%;
        height: 100%;
        outline: none;
        font-size: 19px;
        margin-left: 12px;
        border-radius: 5px;
        text-align: center;
        border: 1px solid #000000;
        -moz-appearance: textfield;
    }

    input[type="number"]::-webkit-outer-spin-button,
    input[type="number"]::-webkit-inner-spin-button {
        -webkit-appearance: none;
    }

    .price-input .separator {
        width: 130px;
        display: flex;
        font-size: 14px;
        align-items: center;
        justify-content: center;
    }

    .price-input .field span {
        font-size: 13px;
        text-transform: uppercase;
    }

    .price-input .field input {
        font-size: 14px;
        border-radius: 5px;
        font-weight: 500;
        border: 1px solid lightblue;
    }

    .slider {
        height: 3px;
        position: relative;
        background: #9f9999;
        border-radius: 0;
        margin-top: 20px;
    }

    .slider .progress {
        height: 100%;
        left: 25%;
        right: 25%;
        position: absolute;
        border-radius: 0;
        background: var(--primary-color);

    }

    .range-input {
        position: relative;
        margin-bottom: 20px;
    }

    .range-input input {
        position: absolute;
        width: 100%;
        height: 5px;
        top: -5px;
        background: none;
        pointer-events: none;
        -webkit-appearance: none;
        -moz-appearance: none;
    }

    input[type="range"]::-webkit-slider-thumb {
        height: 20px;
        width: 30px;
        /* border-radius: 50%; */
        background: var(--primary-color);
        pointer-events: auto;
        -webkit-appearance: none;
        box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
    }

    input[type="range"]::-moz-range-thumb {
        height: 17px;
        width: 17px;
        border: none;
        border-radius: 50%;
        background: #17a2b8;
        pointer-events: auto;
        -moz-appearance: none;
        box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
    }
}

.product-image-slider-box {
    .swiper {
        width: 100%;
        height: 200px;
        margin-left: auto;
        margin-right: auto;
    }

    .swiper-slide {
        background-size: cover;
        background-position: center;
    }

    .productImageSwiperMain {
        height: 100%;
        width: 100%;
        border-radius: 20px;
    }

    .mySwiper {
        height: 100%;
        box-sizing: border-box;
        padding: 10px 0;
    }

    .mySwiper .swiper-slide {
        width: 25%;
        height: 100%;
        opacity: 0.4;
    }

    .mySwiper .swiper-slide-thumb-active {
        opacity: 1;
    }

    .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.miniSummaryProductContainer {
    display: flex;
    padding: 10px 0;
}

.miniSummaryProductContainer p {
    border-right: 2px solid black;
    padding: 0px 20px;
}

.miniSummaryProductContainer p:first-child {
    padding-left: 0;
}

.miniSummaryProductContainer p:last-child {
    border-right: none;
}

.priceContainer {
    padding: 15px 0;
    display: flex;
    gap: 10px;
}

.priceContainer .originalPrice {
    font-size: 25px;
    color: var(--primary-color);
    text-decoration: line-through;
    font-weight: 400;
}

.priceContainer .discountPrice {
    font-size: 35px;
    color: var(--primary-color);
}

.productDetailsContainer {
    padding-left: 40px;
}

.productDetailsContainer .product-short-description-table {
    margin-top: 30px;
    background-color: #f5f4f4;
    padding: 20px;
    border-radius: 10px;
}

.productDetailsContainer .product-short-description-table table {
    width: 100%;
    border-collapse: collapse;
}

.productDetailsContainer .product-short-description-table table tbody tr {
    width: 100%;
    /* border-bottom: 1px solid lightgray; */
    font-size: 14px;
    color: rgb(56, 56, 56);
}

.productDetailsContainer .product-short-description-table table tbody tr td {
    padding-bottom: 10px;
}


.productDetailsContainer .product-short-description-table table tbody tr td p::after {
    content: ',';
}

.productDetailsContainer .product-short-description-table table tbody tr td p:last-child:after {
    content: '';
}

.productDetailsContainer .product-short-description-table table tbody tr td span::after {
    content: ',';
}

.productDetailsContainer .product-short-description-table table tbody tr td span:last-child:after {
    content: '';
}

.productDetailsContainer .product-short-description-table table tbody tr td:first-child {
    font-weight: 600;
    min-width: 100px;
}

button.quick-view {
    margin-top: 20px;
    background-color: black;
    padding: 10px 40px;
    border: 1px solid black;
    width: 100%;
    border: 2px solid black;
    transition: all 0.3s ease;
}

button.quick-view a {
    color: white;
    font-weight: 600;
    font-size: 16px;
    font-family: "Montserrat", serif;
    transition: all 0.3s ease;
}

button.quick-view:hover {
    background-color: white;
}

button.quick-view:hover a {
    color: black;
}

.similiar-product-slider {
    padding-top: 30px;

    .swiper {
        width: 100%;
        height: 100%;
        border-radius: 0;
    }

    .swiper-slide {
        text-align: center;
        font-size: 18px;
        background: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* KeyFrame  */

@-webkit-keyframes fade-in-bottom {
    0% {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1
    }
}

@keyframes fade-in-bottom {
    0% {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1
    }
}

.fade-in-bottom {
    -webkit-animation: fade-in-bottom 1s cubic-bezier(.55, .055, .675, .19) both;
    animation: fade-in-bottom 1s cubic-bezier(.55, .055, .675, .19) both
}

.descriptionNews ul {
    list-style: circle;
    padding-left: 20px;
    padding-bottom: 20px;
}

.descriptionNews ul li {
    list-style-position: outside;
}

.pagination-custom {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.pagination-custom .page-numbers {
    background-color: var(--primary-color);
    padding: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    border-radius: 3px;
    font-weight: 600;
}

.pagination-custom .page-numbers.current {
    background-color: #979797;
}

.newDetailContainer {
    border-radius: 10px;
}

.newDetailContainer .imageContainer {
    padding-bottom: 30px;
}

.generalGetContentContainer {

    h1,
    h2,
    h3,
    h4,
    h5 {
        margin-bottom: 20px;
    }

    p {
        margin-bottom: 15px;
    }

    img {
        width: 100%;
        height: auto;
        padding-bottom: 20px;
    }
}

@media only screen and (max-width: 600px) {
    .desktop-hide {
        display: block;
    }

    .container {
        padding: 0 15px;
    }

    .mobile-hide {
        display: none;
    }

    .header-container .afterLogo {
        display: none;
    }

    .header-style .first-section .leftSide {
        padding-bottom: 30px;
    }

    .header-style .first-section .rightSide {
        position: relative;
        padding-bottom: 20px;
    }

    .header-style .first-section .rightSide img {
        padding-top: 40px;
    }

    .aside-right {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        background-color: white;
        width: 100%;
        z-index: 2;
        transform: translatex(-100%);
        transition: 500ms cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1100;
        /* opacity: 0; */
    }

    .aside-right .closeIcon {
        text-align: right;
        padding: 10px 30px;
        background-color: transparent;
		
		svg {
			fill: var(--secondary-color);
		}
    }

    .aside-right .mobileNavigation {
        padding: 30px;
    }

    .aside-right .mobileNavigation ul {
        display: flex;
        flex-direction: column;
        width: 100%;
        justify-content: space-between;
    }

    .aside-right .mobileNavigation ul li {
        padding: 10px 0;
        border-bottom: none;
    }

    .aside-right .mobileNavigation ul li a {
                display: flex
;
        justify-content: space-between;
        font-weight: 500;
        font-size: 0.85rem;
        color: var(--seconday-color);
        text-transform: uppercase;
    }

    .aside-right .mobileNavigation ul li ul {
        display: none;
    }

    .aside-right .mobileNavigation ul li ul li {
        padding-left: 20px;
        border-bottom: none;
    }

    .aside-right .mobileNavigation ul li ul li:first-child {
        border-top: none;
    }

    .aside-right .mobileNavigation ul li ul li:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .aside-right .mobileNavigation ul li:hover ul {
        display: block;
    }

    .aside-right .mobileNavigation ul li:hover a {
        padding-bottom: 10px;
    }

    .aside-right .mobileNavigation ul li:hover ul li a {
        padding-bottom: 0;
    }

    .aside-right .afterNavigation {
        padding: 0 30px;
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .aside-right .afterNavigation .product-btn {
        background-color: black;
        padding: 5px 25px;
        border-radius: 5px;
        color: white;
        text-transform: uppercase;
        font-weight: 600;
        font-size: 14px;
    }

    .header-container {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .authorized-container {
        padding-top: 20px;
        padding-bottom: 20px;
        align-items: center;
    }

    .authorized-container h3 {
        font-size: 12px !important;
    }

    .homepage-offer {
        gap: 10px !important;
    }


    .homepage-offer .offer-item .image-box {
        height: 220px;
    }



    .homepage-offer .offer-item p.offer-content {
        font-size: 12px;
    }

    .homepage-offer .offer-item {
        margin-bottom: 10px;
    }

    .joinUsSection {
        padding: 30px;
        border-radius: 30px;
    }

    .joinUsSection .leftSide h2 {
        font-size: 12px;
        padding-bottom: 15px;
    }

    .joinUsSection .rightSide {
        width: 50%;
        right: 2%;
    }

    .joinUsSection .leftSide a {
        font-size: 10px;
        padding: 5px 10px;
    }

    footer .footer-img {
        padding-top: 0;
        padding-bottom: 40px;
    }

    footer .footer-item h3 {
        padding-top: 10px;
    }

    footer .copyrightfooter {
        padding-top: 40px;
    }

    .about-first-section .leftSideDesktop {
        display: none;
    }

    .about-first-section .leftSideMobile {
        position: absolute;
        z-index: 29;
        top: 0;
        left: 0;
        display: block;
    }

    .about-first-section {
        padding-top: 150px;
        padding-bottom: 100px;
    }

    .visionMissionSection .visionContainer {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .newsContainer .newsImage {
        height: 100px;
    }

    .visionMissionSection .missionContainer .content {
        padding-top: 50px;
        padding-bottom: 50px;
        padding-left: inherit;
        padding-right: inherit;
    }

    .visionMissionSection .missionContainer .missionBackground {
        left: -30px;
    }

    .shareHolderSection {
        align-items: start;
        padding-bottom: 50px;
        padding-top: 50px;
    }

    .shareHolderSection .shareHolderContainer .shareHolderContent {
        position: relative;
        bottom: 0;
        width: 100%;
        right: 0;
        background-color: rgba(255, 255, 255, 0.7);
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
        padding: 10%;
    }

    .categoryContainer {
        height: 150px;
    }

    .categoryContainer .text {
        font-size: 10px;
    }

    .productItemContainer .productContent h3 {
        font-size: 13px;
        padding: 15px 10px;
    }

    .productItemContainer .priceContainer {
        background-color: var(--primary-color);
        display: flex;
        padding: 5px 10px;
        position: relative;
    }

    .productItemContainer .priceContainer .price {
        font-weight: 600;
        font-size: 13px;
        color: whitesmoke;
    }

    .productItemContainer .priceContainer .viewProductBtn {
        width: 35%;
        font-size: 11px;
        font-weight: 600;
        padding: 5px 10px;
        text-align: center;
        --p: 10px;
        aspect-ratio: 1;
        clip-path: polygon(0 0, 100% 0, 100% 100%, var(--p) 100%);
    }

    .productItemContainer .productContent .specialfeature {
        padding: 15px 10px;
        width: 100%;
        flex-wrap: unset;
    }

    .productItemContainer .productContent .specialfeature .year,
    .productItemContainer .productContent .specialfeature .lenght,
    .productItemContainer .productContent .specialfeature .seat {
        display: flex;
        align-items: center;
        gap: 5px;
        width: unset;
        margin-bottom: 10px;
    }

    .productItemContainer {
        margin-bottom: 20px;
    }

    .homepage-offer .offer-item .image-box::before {
        font-size: 60px;
        top: -15px;
    }

    #servicesPage .header-container {
        padding-top: 20px;
        padding-bottom: 20px;
        background: #ffffff61;
    }

    #servicesPage .header-container.sticky {
        background-color: white;
    }

    #servicesPage .about-first-section {
        padding-top: 150px;
        padding-bottom: 150px;
    }

    #servicesPage-content .homepage-offer .offer-item .image-box {
        width: 100%;
        height: unset;
        aspect-ratio: 3 / 4;
        background-color: orange;
        overflow: hidden;
    }

    #sustainabilitySection {
        padding-top: 150px;
    }

    #sustainabilitySection .first-section {
        padding: 20px;
    }

    #sustainabilitySection .first-section h2 {
        font-size: 25px;
    }

    #sustainabilitySection .first-section p {
        font-size: 13px;
    }

    #sustainabilitySection .treeIcon {
        height: 50px;
    }

    #sustainabilitySection .second-section {
        padding: 20px;
    }

    #sustainabilitySection .second-section h2 {
        font-size: 12px;
        text-align: center;
    }

    #sustainabilitySection .second-section img {
        height: 100px;
        text-align: center;
    }

    #sustainabilitySection .second-section {
        flex-direction: column;
    }

    .partnershipSection p {
        width: 90%;
    }

    #newsPage .about-first-section {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .contact-page-contact-form {
        width: 100%;
        padding-top: 20px;
    }

    footer .footer-img img {
        height: 40px;
    }

    .productDetailsContainer {
        padding-left: initial;
    }

    .ulLoginPage .liLoginPage {
        max-width: inherit;
    }

    .header-container .afterLogoIcon {
        display: flex;
        gap: 20px;
        align-items: start;
    }

    .productItemContainer .productContent .specialfeature .year .icon,
    .productItemContainer .productContent .specialfeature .lenght .icon,
    .productItemContainer .productContent .specialfeature .seat .icon {
        display: none;
    }
}